10 |
How do I bring/ensure a specified face to the front
with AxTreeCube1 do begin IdentifyFace := Integer(EXTREECUBELib.IdentifyFaceEnum.exIdentifyFaceFrame) Or Integer(EXTREECUBELib.IdentifyFaceEnum.exIdentifyFaceName) Or Integer(EXTREECUBELib.IdentifyFaceEnum.exIdentifyFaceCaption); VisibleFace := EXTREECUBELib.FaceEnum.exTopFace; end |
9 |
How do I bring/ensure a specified face to the front
|
8 |
It sounds like the BackColor property does nothing
|
7 |
Is there any property to identify the faces I can fill in
|
6 |
How can I prevent scrolling the control inside a face once the user rolls the mouse wheel
|
5 |
Can I navigate through the faces 0 to 3 only, even with the keyboard
with AxTreeCube1 do begin EnsureVisibleFaces := '0,1,2,3'; AllowRotate := Integer(EXTREECUBELib.RotateEnum.exRotateRight) Or Integer(EXTREECUBELib.RotateEnum.exRotateLeft); IdentifyFace := Integer(EXTREECUBELib.IdentifyFaceEnum.exIdentifyFaceFrame) Or Integer(EXTREECUBELib.IdentifyFaceEnum.exIdentifyFaceName) Or Integer(EXTREECUBELib.IdentifyFaceEnum.exIdentifyFaceCaption); EnsureVisibleFaceOnDblClick := False; end |
4 |
It sounds like the BackColor property does nothing
|
3 |
Is it possible to let the control shows/rotates just the left/right side
|
2 |
How can I disable changing the view if the user presses SPACE or digit keys
with AxTreeCube1 do begin AllowEnsureVisibleFaceOnKey := EXTREECUBELib.AllowEnsureVisibleFaceOnKeyEnum.exEnsureVisibleFaceOnKeyDisabled; end |
1 |
I've noticed that I can not show the part of the control as I drag, once I release the mouse button
|